The name of the section containing the array.
The array of integer values to add.





In This Topic

AddArrayOfIntegers Method (GdPictureOfficeTemplateBuilder<T>)

In This Topic
Adds an array of integers to the template.
Syntax
'Declaration

 

Public Function AddArrayOfIntegers( _

   ByVal sectionName As String, _

   ByVal ParamArray arrayOfIntValues() As Integer _

) As T
public T AddArrayOfIntegers( 

   string sectionName,

   params int[] arrayOfIntValues

)
public function AddArrayOfIntegers( 

    sectionName: String;

   params  arrayOfIntValues: Integerarray of

): T; 
public function AddArrayOfIntegers( 

   sectionName : String,

   arrayOfIntValues : int[]

) : T;
public: T* AddArrayOfIntegers( 

   string* sectionName,

   params int[]* arrayOfIntValues

) 
public:

T^ AddArrayOfIntegers( 

   String^ sectionName,

   ... array<int>^ arrayOfIntValues

) 

Parameters

sectionName
The name of the section containing the array.
arrayOfIntValues
The array of integer values to add.

Return Value

The template builder instance.
See Also